home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / dtspcd.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  81 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. #T
  7.  
  8. if(description)
  9. {
  10.  script_id(10833);
  11.  script_bugtraq_id(3517);
  12.  script_version("$Revision: 1.12 $");
  13.  script_cve_id("CVE-2001-0803");
  14.  if(defined_func("script_xref"))script_xref(name:"IAVA", value:"2002-A-0001");
  15.  name["english"] = "dtspcd overflow";
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. The 'dtspcd' service is running. This service deals with
  20. the CDE interface for the X11 system.
  21.  
  22. Some versions of this daemon are vulnerable to a buffer overflow 
  23. attack which may allow an attacker to gain root privileges on
  24. this host.
  25.  
  26. *** This warning might be a false positive,
  27. *** as no real overflow was performed
  28.  
  29. Solution : See http://www.cert.org/advisories/CA-2001-31.html
  30. to determine if you are vulnerable or deactivate this service 
  31. (comment out the line 'dtspc' in /etc/inetd.conf and restart the inetd process)
  32.  
  33. Risk factor : High";
  34.  
  35.  
  36.  
  37.  script_description(english:desc["english"]);
  38.  
  39.  summary["english"] = "Determines if dtspcd is running";
  40.  
  41.  script_summary(english:summary["english"]);
  42.  
  43.  script_category(ACT_GATHER_INFO);
  44.  
  45.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison",
  46.         francais:"Ce script est Copyright (C) 2002 Renaud Deraison");
  47.  family["english"] = "Gain root remotely";
  48.  family["francais"] = "Passer root α distance";
  49.  
  50.  script_family(english:family["english"], francais:family["francais"]);
  51.  script_require_ports(6112);
  52.  exit(0);
  53. }
  54.  
  55.  
  56. include("misc_func.inc");
  57.  
  58. if(get_port_state(6112))
  59. {
  60. soc = open_sock_tcp(6112);
  61. if(soc)
  62. {
  63.  pkt = raw_string(0x30, 0x30, 0x30, 0x30,
  64.           0x30, 0x30, 0x30, 0x32,
  65.           0x30, 0x34, 0x30, 0x30,
  66.           0x30, 0x64, 0x30, 0x30,
  67.           0x30, 0x31, 0x20, 0x20,
  68.           0x34, 0x20, 0x00, 0x72,
  69.           0x6F, 0x6F, 0x74, 0x00,
  70.           0x00, 0x31, 0x30, 0x00, 0x00);
  71.  
  72.  send(socket:soc, data:pkt);
  73.  r = recv(socket:soc, length:4096);
  74.   if("SPC_" >< r)
  75.   {
  76.   security_hole(6112);
  77.   register_service(port:6112, proto:"dtspcd");
  78.   }
  79.  }
  80. }
  81.